home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Diversos / rocketcar2.swf / scripts / frame_9 / PlaceObject2_580_356 / CLIPACTIONRECORD onClipEvent(keyDown).as < prev    next >
Encoding:
Text File  |  2008-09-24  |  370 b   |  19 lines

  1. onClipEvent(keyDown){
  2.    if(Key.isDown(80))
  3.    {
  4.       if(!_root.paused)
  5.       {
  6.          _root.paused = true;
  7.          _root.stopSFX();
  8.          _root.pauser.gotoAndPlay(2);
  9.          return undefined;
  10.       }
  11.       if(_root.paused)
  12.       {
  13.          _root.paused = false;
  14.          _root.pauser.gotoAndStop(1);
  15.          return undefined;
  16.       }
  17.    }
  18. }
  19.